From abf1efa40dc02ce61f2d3dc446f527fa3efd427b Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 27 Jan 2011 19:42:40 +0000 Subject: [PATCH] Config.mk: commented-out CONFIG_QEMU example now uses `pwd`/$(XEN_ROOT) If you actually set it to a relative path, the qemu build breaks. So this commented-out rune (an example) should arrange to be absolute. Unfortunately XEN_ROOT is itself relative so the previous attempt to fix this (22772:654563af359f) didn't work. So use `pwd`. Tested-by: M A Young Signed-off-by: Ian Jackson Committed-by: Ian Jackson --- Config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config.mk b/Config.mk index 20a4dac40f..e0379fb3ea 100644 --- a/Config.mk +++ b/Config.mk @@ -182,7 +182,7 @@ endif # Specify which qemu-dm to use. This may be `ioemu' to use the old # Mercurial in-tree version, or a local directory, or a git URL. -# CONFIG_QEMU ?= $(XEN_ROOT)/../qemu-xen.git +# CONFIG_QEMU ?= `pwd`/$(XEN_ROOT)/../qemu-xen.git CONFIG_QEMU ?= $(QEMU_REMOTE) QEMU_TAG := xen-4.1.0-rc2 -- 2.30.2